fc557d43c0c0f3d2d40f52d436fb141d64b60fd4,language/thingml/xtend-gen/org/thingml/xtext/scoping/ThingMLScopeProvider.java,ThingMLScopeProvider,scopeForThing_Includes,#Thing#,413

Before Change


  }
  
  protected IScope scopeForThing_Includes(final Thing context) {
    ThingMLModel _findContainingModel = ThingMLHelpers.findContainingModel(context);
    ArrayList<Thing> _allThings = ThingMLHelpers.allThings(_findContainingModel);
    return Scopes.scopeFor(_allThings);
  }
  
  protected IScope scopeForTransition_Target(final Transition context) {

After Change


  }
  
  protected IScope scopeForThing_Includes(final Thing context) {
    return Scopes.scopeFor(ThingMLHelpers.allThings(ThingMLHelpers.findContainingModel(context)));
  }
  
  protected IScope scopeForTransition_Target(final Transition context) {